method URLSearchParams.[Symbol.iterator]
#URLSearchParams.[Symbol.iterator](): IterableIterator<[string, string]>
Returns an iterator allowing to go through all key/value pairs contained in this object.
const params = new URLSearchParams([["a", "b"], ["c", "d"]]);
for (const [key, value] of params) {
console.log(key, value);
}
Return Type #
IterableIterator<[string, string]>